* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #050505;
  color: #f4f4f4;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}


/* =========================
   NAVIGATION
========================= */

.nav {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;

  height: 82px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 6vw;

  background: rgba(5, 5, 5, 0.82);

  backdrop-filter: blur(16px);

  border-bottom: 1px solid #242424;
}

.brand {
  display: flex;
  align-items: center;

  gap: 12px;

  font-weight: 800;

  letter-spacing: 0.08em;
}

.brand img {
  width: 42px;
  height: 42px;

  object-fit: contain;
}

.brand small {
  display: block;

  color: #888;

  font-size: 8px;

  letter-spacing: 0.34em;

  margin-top: -2px;
}

.nav nav {
  display: flex;

  gap: 34px;

  font-size: 13px;

  text-transform: uppercase;

  letter-spacing: 0.14em;

  color: #bcbcbc;
}

.nav nav a {
  transition: color 0.25s ease;
}

.nav nav a:hover {
  color: #fff;
}

.menu {
  display: none;

  background: none;

  border: 0;

  color: #fff;

  font-size: 24px;

  cursor: pointer;
}


/* =========================
   HERO
========================= */

.hero {
  min-height: 100vh;

  display: grid;

  grid-template-columns: 1.05fr 0.95fr;

  align-items: center;

  padding: 130px 8vw 80px;

  position: relative;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 75% 45%,
      #292929 0,
      #111 23%,
      #050505 58%
    );
}

.hero:after {
  content: "";

  position: absolute;

  width: 1100px;
  height: 1100px;

  border: 1px solid #333;

  border-radius: 50%;

  right: -430px;
  top: -80px;

  opacity: 0.5;
}

.hero-copy {
  max-width: 720px;

  position: relative;

  z-index: 2;
}

.eyebrow {
  font-size: 11px;

  letter-spacing: 0.3em;

  color: #aaa;

  font-weight: 700;

  margin: 0 0 20px;
}

.hero h1 {
  font-size: clamp(58px, 8vw, 118px);

  line-height: 0.92;

  letter-spacing: -0.06em;

  margin: 0;

  font-weight: 850;
}

.hero h1 span,
.intro h2 span,
.statement h2 span,
.contact h2 span {
  color: #9c9c9c;
}

.lead {
  max-width: 600px;

  color: #aaa;

  font-size: 18px;

  margin: 30px 0;
}

.actions {
  display: flex;

  gap: 12px;
}


/* =========================
   BUTTONS
========================= */

.btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 14px 22px;

  border-radius: 2px;

  border: 1px solid #555;

  text-transform: uppercase;

  letter-spacing: 0.12em;

  font-size: 11px;

  font-weight: 800;

  cursor: pointer;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:disabled {
  opacity: 0.6;

  cursor: wait;

  transform: none;
}

.primary {
  background: #eee;

  color: #050505;

  border-color: #eee;
}

.primary:hover {
  background: #050505;

  color: #ccbdbd;

  border-color: #ccbdbd;
}

.ghost {
  color: #eee;

  background: #0b0909;
}

.ghost:hover {
  background: #f6f4f4;

  color: #050505;
}

.gold {
  background:
    linear-gradient(
      to top,
      #f20606,
      #390101
    );

  color: #050505;

  border-color: #050201;
}

.hero-mark {
  display: flex;

  justify-content: center;

  align-items: center;

  position: relative;

  z-index: 2;
}

.hero-mark img {
  width: min(520px, 90%);

  filter:
    drop-shadow(
      0 24px 50px rgba(255, 255, 255, 0.12)
    );
}

.ring {
  position: absolute;

  width: 420px;

  height: 420px;

  border: 1px solid #333;

  border-radius: 50%;

  box-shadow:
    0 0 100px rgba(255, 255, 255, 0.05);
}


/* =========================
   INTRO
========================= */

section.intro,
.services,
.statement,
.contact {
  padding: 120px 8vw;

  border-top: 1px solid #202020;
}

.intro {
  max-width: 1100px;
}

.intro h2,
.section-head h2,
.statement h2,
.contact h2 {
  font-size: clamp(42px, 5.5vw, 78px);

  line-height: 0.98;

  letter-spacing: -0.045em;

  margin: 0 0 25px;
}

.intro > p:last-child {
  max-width: 720px;

  color: #999;

  font-size: 18px;
}


/* =========================
   SERVICES
========================= */

.services {
  background: #0b0b0b;
}

.section-head {
  display: flex;

  justify-content: space-between;

  gap: 50px;

  align-items: end;

  margin-bottom: 55px;
}

.section-head > p {
  max-width: 360px;

  color: #888;
}

.cards {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 18px;
}

.card {
  min-height: 310px;

  border: 2px solid #e04444;

  padding: 30px;

  background:
    linear-gradient(
      to top,
      #980505,
      transparent
    );

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);

  border-color: #fc0202;

  background:
    linear-gradient(
      to top,
      transparent,
      #980505
    );
}

.card h3 {
  font-size: 26px;

  margin: 70px 0 14px;
}

.card p {
  color: #888;
}

.card a {
  display: inline-block;

  margin-top: 18px;

  color: #ddd;

  font-size: 12px;

  text-transform: uppercase;

  letter-spacing: 0.12em;
}


/* =========================
   STATEMENT
========================= */

.statement {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 80px;
}

.points {
  border-top: 1px solid #333;
}

.points p {
  padding: 20px 0;

  margin: 0;

  border-bottom: 1px solid #292929;

  color: #aaa;
}

.points b {
  display: inline-block;

  width: 45px;

  color: #eee;
}


/* =========================
   CONTACT
========================= */

.contact {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 90px;

  background:
    linear-gradient(
      120deg,
      #111,
      #050505
    );
}

.contact > div > p:last-child {
  color: #888;

  max-width: 420px;
}

.contact form {
  display: flex;

  flex-direction: column;

  gap: 18px;
}

.contact label {
  font-size: 11px;

  text-transform: uppercase;

  letter-spacing: 0.14em;

  color: #999;
}

.contact input,
.contact textarea {
  display: block;

  width: 100%;

  margin-top: 8px;

  background: #090909;

  border: 1px solid #303030;

  color: #fff;

  padding: 14px;

  font: inherit;

  outline: none;

  transition:
    border-color 0.25s ease;
}

.contact input:focus,
.contact textarea:focus {
  border-color: #888;
}

.contact textarea {
  resize: vertical;
}

.contact .btn {
  width: max-content;
}


/* =========================
   FOOTER
========================= */

footer {
  padding: 45px 8vw;

  border-top: 1px solid #242424;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  color: #777;

  font-size: 11px;
}

.footer-brand {
  display: flex;

  align-items: center;

  gap: 12px;
}

.footer-brand img {
  width: 38px;

  height: 38px;

  object-fit: contain;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: #ddd;

  letter-spacing: 0.12em;
}

.footer-brand span {
  margin-top: 3px;
}

.footer-links {
  display: flex;

  gap: 22px;
}

.footer-links a:hover {
  color: #fff;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 800px) {

  .nav {
    padding: 0 5vw;
  }

  .menu {
    display: block;
  }

  .nav nav {
    display: none;

    position: absolute;

    top: 82px;

    left: 0;

    right: 0;

    padding: 25px 5vw;

    background: #080808;

    border-bottom: 1px solid #222;

    flex-direction: column;

    gap: 20px;
  }

  .nav nav.open {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;

    padding: 130px 7vw 80px;
  }

  .hero-mark {
    margin-top: 70px;
  }

  .ring {
    width: 420px;

    height: 420px;
  }

  .section-head,
  .statement,
  .contact {
    grid-template-columns: 1fr;

    display: grid;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .statement,
  .contact {
    gap: 45px;
  }

  footer {
    flex-direction: column;

    align-items: flex-start;
  }

  .footer-links {
    order: 2;
  }

  .hero h1 {
    font-size: 58px;
  }
}